From: Aaron Schulz Date: Thu, 21 Feb 2013 20:21:33 +0000 (-0800) Subject: Changed blob table to use InnoDB. X-Git-Tag: 1.31.0-rc.0~20606 X-Git-Url: http://git.cyclocoop.org/%22.%24info%5B?a=commitdiff_plain;h=3743479756c9086366335d6bdea6c02907dbadf8;p=lhc%2Fweb%2Fwiklou.git Changed blob table to use InnoDB. Change-Id: Ied2f1bf7577e6afe1d09222ada6be54cedeec574 --- diff --git a/maintenance/storage/blobs.sql b/maintenance/storage/blobs.sql index 623dd7bfd7..979e68a94e 100644 --- a/maintenance/storage/blobs.sql +++ b/maintenance/storage/blobs.sql @@ -4,5 +4,4 @@ CREATE TABLE /*$wgDBprefix*/blobs ( blob_id integer UNSIGNED NOT NULL AUTO_INCREMENT, blob_text longblob, PRIMARY KEY (blob_id) -) ENGINE=MyISAM MAX_ROWS=100000000 AVG_ROW_LENGTH=100000; - +) ENGINE=InnoDB;